NAME
exp - Natural exponent

SYNTAX
float exp(float f);

DESCRIPTION
Return the natural exponent of f. log( exp( x ) ) == x as long as exp(x) doesn't overflow an int.

KEYWORDS
float

SEE ALSO
pow and log